home *** CD-ROM | disk | FTP | other *** search
/ United Public Domain Gold 2 / United Public Domain Gold 2.iso / utilities / pu563.dms / pu563.adf / MultipleDemo / defs.h next >
C/C++ Source or Header  |  1994-05-18  |  188b  |  9 lines

  1. struct WindowNode
  2. {
  3.   struct WindowNode *ln_Succ;
  4.   struct WindowNode *ln_Pred;
  5.   struct Window *Win;
  6.   struct Gadget *WinGList;
  7.   struct Gadget *WinGadgets[10];
  8.   void * WinVisualInfo;
  9. };